home *** CD-ROM | disk | FTP | other *** search
/ Power Bytes: Money & Finance / PowerBytes Money and Finance CD-ROM 01 / PowerBytes Money and Finance CD-ROM 01.iso / Demos / TrueBASIC Demo / User's Guide / Circle < prev    next >
Encoding:
Text File  |  1985-07-12  |  443 b   |  19 lines  |  [TEXT/TRUE]

  1. ! Draw a circle picture.
  2. !
  3. PICTURE Circle(sides)
  4.  
  5.     FOR i = 0 to sides
  6.        LET u = (i*2*Pi)/sides       ! Find next angle
  7.        PLOT Cos(u), Sin(u);         ! Plot next segment
  8.     NEXT i
  9.     PLOT                            ! Turn off beam
  10.  
  11. END PICTURE
  12.  
  13. SET WINDOW -15, 15, -10, 10         ! Set the window
  14.  
  15. FOR j = 1 to 30                     ! Draw a bunch of circles
  16.     DRAW Circle(j) with Scale(j/3)  ! Bigger and better
  17. NEXT j
  18. END
  19.